home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / StringInStr.au3 < prev    next >
Text File  |  2006-06-17  |  236b  |  5 lines

  1. $result = StringInStr("I am a String", "RING")
  2. MsgBox(0, "Search result:", $result)
  3.  
  4. $location = StringInStr("How much wood could a woodchuck chuck is a woodchuck could chuck wood?", "wood", 0, 3) ; Find the 3rd occurance of "wood"
  5.